home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / locale / nsILocale.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  2.5 KB  |  97 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsILocale.idl
  3.  */
  4.  
  5. #ifndef __gen_nsILocale_h__
  6. #define __gen_nsILocale_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17. #define NSILOCALE_COLLATE "NSILOCALE_COLLATE"
  18. #define NSILOCALE_CTYPE  "NSILOCALE_CTYPE"
  19. #define NSILOCALE_MONETARY "NSILOCALE_MONETARY"
  20. #define NSILOCALE_NUMERIC "NSILOCALE_NUMERIC"
  21. #define NSILOCALE_TIME "NSILOCALE_TIME"
  22. #define NSILOCALE_MESSAGE "NSILOCALE_MESSAGES"
  23. #define NS_LOCALE_CONTRACTID "@mozilla.org/intl/nslocale;1"
  24.  
  25. /* starting interface:    nsILocale */
  26. #define NS_ILOCALE_IID_STR "21035ee0-4556-11d3-91cd-00105aa3f7dc"
  27.  
  28. #define NS_ILOCALE_IID \
  29.   {0x21035ee0, 0x4556, 0x11d3, \
  30.     { 0x91, 0xcd, 0x00, 0x10, 0x5a, 0xa3, 0xf7, 0xdc }}
  31.  
  32. class NS_NO_VTABLE nsILocale : public nsISupports {
  33.  public: 
  34.  
  35.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_ILOCALE_IID)
  36.  
  37.   /* AString getCategory (in AString category); */
  38.   NS_IMETHOD GetCategory(const nsAString & category, nsAString & _retval) = 0;
  39.  
  40. };
  41.  
  42. /* Use this macro when declaring classes that implement this interface. */
  43. #define NS_DECL_NSILOCALE \
  44.   NS_IMETHOD GetCategory(const nsAString & category, nsAString & _retval); 
  45.  
  46. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  47. #define NS_FORWARD_NSILOCALE(_to) \
  48.   NS_IMETHOD GetCategory(const nsAString & category, nsAString & _retval) { return _to GetCategory(category, _retval); } 
  49.  
  50. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  51. #define NS_FORWARD_SAFE_NSILOCALE(_to) \
  52.   NS_IMETHOD GetCategory(const nsAString & category, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCategory(category, _retval); } 
  53.  
  54. #if 0
  55. /* Use the code below as a template for the implementation class for this interface. */
  56.  
  57. /* Header file */
  58. class nsLocale : public nsILocale
  59. {
  60. public:
  61.   NS_DECL_ISUPPORTS
  62.   NS_DECL_NSILOCALE
  63.  
  64.   nsLocale();
  65.  
  66. private:
  67.   ~nsLocale();
  68.  
  69. protected:
  70.   /* additional members */
  71. };
  72.  
  73. /* Implementation file */
  74. NS_IMPL_ISUPPORTS1(nsLocale, nsILocale)
  75.  
  76. nsLocale::nsLocale()
  77. {
  78.   /* member initializers and constructor code */
  79. }
  80.  
  81. nsLocale::~nsLocale()
  82. {
  83.   /* destructor code */
  84. }
  85.  
  86. /* AString getCategory (in AString category); */
  87. NS_IMETHODIMP nsLocale::GetCategory(const nsAString & category, nsAString & _retval)
  88. {
  89.     return NS_ERROR_NOT_IMPLEMENTED;
  90. }
  91.  
  92. /* End of implementation class template. */
  93. #endif
  94.  
  95.  
  96. #endif /* __gen_nsILocale_h__ */
  97.